home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 12 / CU Amiga Magazine's Super CD-ROM 12 (1997)(EMAP Images)(GB)[!][issue 1997-07].iso / CUCD / Games / DestructivePoker / sources / sources.lha / junkpile.h < prev    next >
C/C++ Source or Header  |  1997-02-13  |  472b  |  21 lines

  1. /*
  2.         junkpile.h
  3.  
  4.         V1.00 - 151096  Kimmo Teräväinen
  5.         -----   ------  ----------------
  6.         V0.01   111196  Taken away from handpile.h
  7.         V0.10   201196  Improved cCardPile, so junkpile is actually same
  8.                         as cCardPile.
  9. */
  10. #ifndef DC1_POKER_JUNKPILE
  11. #define DC1_POKER_JUNKPILE
  12.  
  13. #include "cardpile.h"
  14.  
  15. class cJunkPile : public cCardPile {
  16. public:
  17.   cJunkPile(int lkm=52,int x=500,int y=50) : cCardPile(lkm,x,y) { }
  18. };
  19.  
  20. #endif
  21.